Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632698 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/78 - Dictionary App

style.css cody/swapnilsparsh/30DaysOfJavaScript/78 - Dictionary App/style.css
105 Views
0 Comments
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
display: flex;
index.html cody/swapnilsparsh/30DaysOfJavaScript/78 - Dictionary App/index.html
320 Views
0 Comments
<!Doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dictionary App</title>
<meta name="viewport" content="width-device=width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
script.js cody/swapnilsparsh/30DaysOfJavaScript/78 - Dictionary App/script.js
167 Views
0 Comments
const wrapper = document.querySelector(".wrapper"),
searchInput = wrapper.querySelector("input"),
synonyms = wrapper.querySelector(".synonyms .list"),
infoText = wrapper.querySelector(".info-text"),
volumeIcon = wrapper.querySelector(".word i"),
removeIcon = wrapper.querySelector(".search span");
let audio;